From 4f67285651ec8b03c9f88e5b5bc3078f584d5d20 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 28 Jan 2004 20:39:46 +0000 Subject: [PATCH] Don't leak string. (#132482, Christian Persch) Wed Jan 28 21:40:47 2004 Matthias Clasen * gtk/gtkentrycompletion.c (gtk_entry_completion_action_data_func): Don't leak string. (#132482, Christian Persch) --- ChangeLog | 5 +++++ ChangeLog.pre-2-10 | 5 +++++ ChangeLog.pre-2-4 | 5 +++++ ChangeLog.pre-2-6 | 5 +++++ ChangeLog.pre-2-8 | 5 +++++ gtk/gtkentrycompletion.c | 2 ++ 6 files changed, 27 insertions(+) diff --git a/ChangeLog b/ChangeLog index 5fc6c7bc38..a19e61e553 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Jan 28 21:40:47 2004 Matthias Clasen + + * gtk/gtkentrycompletion.c (gtk_entry_completion_action_data_func): + Don't leak string. (#132482, Christian Persch) + Tue Jan 27 18:45:47 2004 Manish Singh * m4macros/gtk-2.0.m4: quote AC_DEFUN macro names so automake diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 5fc6c7bc38..a19e61e553 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Wed Jan 28 21:40:47 2004 Matthias Clasen + + * gtk/gtkentrycompletion.c (gtk_entry_completion_action_data_func): + Don't leak string. (#132482, Christian Persch) + Tue Jan 27 18:45:47 2004 Manish Singh * m4macros/gtk-2.0.m4: quote AC_DEFUN macro names so automake diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 5fc6c7bc38..a19e61e553 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +Wed Jan 28 21:40:47 2004 Matthias Clasen + + * gtk/gtkentrycompletion.c (gtk_entry_completion_action_data_func): + Don't leak string. (#132482, Christian Persch) + Tue Jan 27 18:45:47 2004 Manish Singh * m4macros/gtk-2.0.m4: quote AC_DEFUN macro names so automake diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 5fc6c7bc38..a19e61e553 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Wed Jan 28 21:40:47 2004 Matthias Clasen + + * gtk/gtkentrycompletion.c (gtk_entry_completion_action_data_func): + Don't leak string. (#132482, Christian Persch) + Tue Jan 27 18:45:47 2004 Manish Singh * m4macros/gtk-2.0.m4: quote AC_DEFUN macro names so automake diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 5fc6c7bc38..a19e61e553 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Wed Jan 28 21:40:47 2004 Matthias Clasen + + * gtk/gtkentrycompletion.c (gtk_entry_completion_action_data_func): + Don't leak string. (#132482, Christian Persch) + Tue Jan 27 18:45:47 2004 Manish Singh * m4macros/gtk-2.0.m4: quote AC_DEFUN macro names so automake diff --git a/gtk/gtkentrycompletion.c b/gtk/gtkentrycompletion.c index 13884a8c7b..da969f8f07 100644 --- a/gtk/gtkentrycompletion.c +++ b/gtk/gtkentrycompletion.c @@ -688,6 +688,8 @@ gtk_entry_completion_action_data_func (GtkTreeViewColumn *tree_column, "markup", NULL, "text", string, NULL); + + g_free (string); } static void -- 2.30.2